home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / dev / lang / pcq12b.lzh / Include / Hardware / IntBits.i < prev   
Text File  |  1990-08-27  |  1KB  |  46 lines

  1. {
  2.     IntBits.i for PCQ Pascal
  3.  
  4.     bits in the interrupt enable (and interrupt request) register
  5. }
  6.  
  7. Const
  8.  
  9.     INTB_SETCLR        = 15;    { Set/Clear control bit. Determines if bits }
  10.                 { written with a 1 get set or cleared. Bits }
  11.                 { written with a zero are allways unchanged }
  12.     INTB_INTEN        = 14;    { Master interrupt (enable only ) }
  13.     INTB_EXTER        = 13;    { External interrupt }
  14.     INTB_DSKSYNC    = 12;    { Disk re-SYNChronized }
  15.     INTB_RBF        = 11;    { serial port Receive Buffer Full }
  16.     INTB_AUD3        = 10;    { Audio channel 3 block finished }
  17.     INTB_AUD2        = 9;    { Audio channel 2 block finished }
  18.     INTB_AUD1        = 8;    { Audio channel 1 block finished }
  19.     INTB_AUD0        = 7;    { Audio channel 0 block finished }
  20.     INTB_BLIT        = 6;    { Blitter finished }
  21.     INTB_VERTB        = 5;    { start of Vertical Blank }
  22.     INTB_COPER        = 4;    { Coprocessor }
  23.     INTB_PORTS        = 3;    { I/O Ports and timers }
  24.     INTB_SOFTINT    = 2;    { software interrupt request }
  25.     INTB_DSKBLK        = 1;    { Disk Block done }
  26.     INTB_TBE        = 0;    { serial port Transmit Buffer Empty }
  27.  
  28.  
  29.     INTF_SETCLR        = $8000;
  30.     INTF_INTEN        = $4000;
  31.     INTF_EXTER        = $2000;
  32.     INTF_DSKSYNC    = $1000;
  33.     INTF_RBF        = $0800;
  34.     INTF_AUD3        = $0400;
  35.     INTF_AUD2        = $0200;
  36.     INTF_AUD1        = $0100;
  37.     INTF_AUD0        = $0080;
  38.     INTF_BLIT        = $0040;
  39.     INTF_VERTB        = $0020;
  40.     INTF_COPER        = $0010;
  41.     INTF_PORTS        = $0008;
  42.     INTF_SOFTINT    = $0004;
  43.     INTF_DSKBLK        = $0002;
  44.     INTF_TBE        = $0001;
  45.  
  46.